home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-21 | 358 b | 24 lines | [TEXT/R*ch] |
- --<<<
- -- Kaleida Labs, Inc.
- -- Field Guide to the ScriptX Language
- -- chapter 9, example 7
-
- module XYZ
- uses ScriptX
- exports x, y, z
- end
- in module XYZ
- global x:10, y:"foo", z:#(56,567)
-
- module XYZexclude1
- uses ScriptX
- uses XYZ with
- imports everything
- excludes y
- end
- end
- in module XYZexclude1
- print x
- -- this should generate an exception
- print y
- -->>>